Welcome![Sign In][Sign Up]
Location:
Search - round robin

Search list

[OS Developshijianpian

Description: 操作系统的实验 关于进程调度中的时间片轮转算法 -The experimental system about the process of scheduling time slice Round Robin
Platform: | Size: 4096 | Author: pengshoukang | Hits:

[ELanguageshijianpian

Description: 操作系统课程设计之时间片轮转算法,经过老师验收,通过-Curriculum design of the operating system time slice Round Robin, after the teacher acceptance, through
Platform: | Size: 1024 | Author: 赵军 | Hits:

[Windows Developbao

Description: 多级反馈队列进程调度算法 1. 实验目的: 用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解。 2. 实验内容: 编写一个模拟程序,完成单处理机系统中的进程调度,采用多级反馈队列的时间片轮转调度算法. 实验具体包括:首先确定进程控制块的内容,进程控制块的组成方式,确定相关参数(如进程数、到达时间、服务时间、时间片大小等) 然后完成进程创建原语、进程调度原语和进程撤销原语 最后编写主函数,上机实验并取得结果数据。 -The process of multi-level feedback queue scheduling algorithm 1. Experimental Objective: To use advanced language writing and debugging a process scheduler in order to deepen their understanding of the concept of the process and understanding the process of scheduling algorithm. 2. Experimental contents: the preparation of a simulated procedure, single-processor systems to complete the process of scheduling, the use of multi-level feedback queue scheduling algorithm Round-Robin Time Slice. Experiments include: First of all, the process control block to determine the content, process control block of the composition determine the relevant parameters (such as the process of the number of arrival time, service time, time slice size, etc.) and then complete the process of creating the original language, the process of scheduling the original language and the process of revocation of the original language the final preparation of the main function of the machine and obtain the results of
Platform: | Size: 2048 | Author: Jun | Hits:

[Windows Developmget

Description: 透過新的傳輸層協定(sctp),由client端下載多個檔案,且server透過round robin 的方式傳遞使average waiting time minimal-Transport layer through the new agreement (sctp), by the client-side download multiple files, and the server the way through the round robbin transmission so that average waiting time minimal
Platform: | Size: 3072 | Author: huangchi | Hits:

[Other1

Description: 进程调度 优先数调度算法 时间片轮转-The process of scheduling a number of priority scheduling algorithm Round-Robin Time Slice .....................................
Platform: | Size: 1024 | Author: lijun | Hits:

[Process-ThreadJCDD

Description: 通过优先权法和轮转算法的模拟加深对进程概念和进程调度过程的理解,掌握进程状态之间的切换,同时掌握进程调度算法的实现方法和技巧。-Through the priority and Round Robin simulation concepts and deepen their understanding of the process of understanding the process of the activation process and master the process of switching between a state and at the same time grasp the realization of the process of scheduling methods and techniques.
Platform: | Size: 240640 | Author: hghh | Hits:

[OS programProcessorSchedul

Description: VC环境下,用时间片轮转调度算法模拟处理机调度实验-Round-Robin Scheduling Algorithm for Time-chip processor scheduling simulation experiment
Platform: | Size: 2048 | Author: karon | Hits:

[Process-Threaddf

Description: 实现单处理器进程调度,采用时间片轮转算法。-The process of the realization of single-processor scheduling, the use of Round Robin time slice.
Platform: | Size: 2048 | Author: 编程高手 | Hits:

[Other1-1

Description: 实验内容: 设计一个一元多项式的简单计算器,其基本功能有:①输入并建立多项式;②输出多项式;③多项式相加;④多项式相减;⑤多项式的乘积(选作)。可利用单链表或单循环表实现。-Experiment content: the design of a one dollar a simple polynomial calculator, and its basic functions: ① the importation and the establishment of polynomials ② output polynomial ③ polynomial sum ④ subtract polynomials ⑤ number type of product (selected for). Can make use of single-list or the realization of the single round-robin table.
Platform: | Size: 2048 | Author: 郭光祖 | Hits:

[Otherprocessdoing

Description: 操作系统中进程调度算法的模拟 可以实现先来先服务 短作业有限 和时间片轮转算法-Operating system scheduling algorithm in the simulation process can be achieved first-come first-serve limited and short operating time slice Round Robin
Platform: | Size: 2048 | Author: zhou | Hits:

[GUI Developntf

Description: This multitasking system contains only task control logic - no semaphores, mailboxes, etc. Tasks are scheduled in a round-robin manner and are not preempted. Once it gains control, each task runs until it voluntarily blocks. It is up to the programmer who uses this package to ensure that tasks do not run for indefinite amounts of time by relinquishing the CPU via calls to tk_block() or tk_next(), or one of the blocking TK_ macros described below.- This multitasking system contains only task control logic- no semaphores, mailboxes, etc. Tasks are scheduled in a round-robin manner and are not preempted. Once it gains control, each task runs until it voluntarily blocks. It is up to the programmer who uses this package to ensure that tasks do not run for indefinite amounts of time by relinquishing the CPU via calls to tk_block() or tk_next(), or one of the blocking TK_ macros described below.
Platform: | Size: 56320 | Author: whos | Hits:

[OS programlist

Description: 实现不带头结点的单循环链表的基本功能,如插入删除结点,以及如何构造一个无头结点的单循环链表-Node does not take the lead to achieve the basic functions of the single round-robin list, such as the insertion deletion of nodes, as well as how to construct a single cycle of the first node list
Platform: | Size: 1024 | Author: Helen22 | Hits:

[source in ebookjoseph

Description: 约瑟夫(Joseph)问题的一种描述是:编号是1,2,……,n的n个人按照顺时针方向围坐一圈,每个人持有一个密码(正整数)。一开始任选一个正整数作为报数上限值m,从第一个人开始按顺时针方向自1开始顺序报数,报到m时停止报数。报m的人出列,将他的密码作为新的m值,从他在顺时针方向的下一个人开始重新从1报数,如此下去,直到所有人全部出列为止。设计一个程序来求出出列顺序。 基本要求: 利用单向循环链表存储结构模拟此过程,按照出列的顺序输出各个人的编号。 测试数据: m的初值为20,n=7 ,7个人的密码依次为3,1,7,2,4,8,4(正确的出列顺序应为6,1,4,7,2,3,5) 要求: 输入数据: 程序运行后,首先要求用户输入m的初值,指定初始报数上限值,然后读取个人的密码,建立单循环链表。 输出形式: 建立一个输出函数,输出正确的出列序号 -Joseph Wan, single round-robin list
Platform: | Size: 2048 | Author: 拉拉 | Hits:

[OS Developschedule

Description: 创建一系列的进程并放入就绪队列中(使用链表实现),来模把创建的进程的信息在屏幕上显示出来。 轮转法及优先级实现调度-Round Robin Schedule & Priority Schedule
Platform: | Size: 5120 | Author: | Hits:

[DirextXDDEX3-modi

Description: 利用directdraw 全屏模式多画面轮循显示图片,及Overlay显示的实例-Full-screen mode to use directdraw round robin multi-screen display pictures, and show examples of Overlay
Platform: | Size: 7715840 | Author: sss | Hits:

[Mathimatics-Numerical algorithmsfslyh

Description: 多道程序设计中,经常是若干个进程同时处于就绪状态,为了使系统中的各进程有条不紊地运行,必须选择某种调度策略,以选择一个进程占用处理机。本次实验按照轮转算法模拟单处理机调度的过程,以加对处理机调度的算法的理解。-Multi-channel program design, often at the same time a number of processes in the ready state, in order to make the system processes in an orderly manner, you must select a scheduling policy to select a process consumes processor. The experiment simulated a single processor in accordance with Round Robin scheduling process in order to add to the processor scheduling algorithm understanding.
Platform: | Size: 2048 | Author: 林雨雄 | Hits:

[VC/MFCjinchengmoni

Description: 模拟进程的创建、阻塞、唤醒、挂起、激活、执行的过程。理解和掌握有关进程控制块、进程调度算法的内容和原理,体会先进先出、优先数和时间片轮转调度算法的具体实施办法。-Simulate the process of creation, blocking, wake up, suspend, activate, implementation process. To understand and grasp the process control block, process, content and principles of scheduling algorithms, experience FIFO, priority number and time-slice round-robin scheduling algorithm for a specific implementation.
Platform: | Size: 2048 | Author: 榴莲飘飘 | Hits:

[Process-Threadshijianplunzhuan

Description: 进程调度算法:先来先服务算法、时间片轮转调度算法的实现 -The process of scheduling algorithms: first-come, first-served algorithm, time slice Round Robin Scheduling Algorithm
Platform: | Size: 2048 | Author: ZZ | Hits:

[OS Developjinchengdiaodu_luanzhuan

Description: 操作系统,进程调度,简单轮转法, 根据进程到达时间先后,对进程排成队列,以实现FCFS算法-Operating system, process scheduling/* Simple Round-Robin* /
Platform: | Size: 566272 | Author: kongku | Hits:

[OS DevelopprocSchdule

Description: 操作系统进程调度实验 时间片轮转算法 VC编写-The operating system process scheduling experiment time slices prepared VC Round Robin
Platform: | Size: 2048 | Author: 龚靖仁 | Hits:
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 24 »

CodeBus www.codebus.net